Ellipse
Calculates ellipse around a region of interest.
🔎 ROI options and parameters of ellipse
accessor
As it is obvious from the name, ellipse
calculates the ellipse around the region of interest.
In ImageJS ellipse is a ROI class accessor that returns an Ellipse object:
Property name | Description | Property type |
---|---|---|
center | Ellipse's center point | Point[] |
majorAxis | Ellipse's major axis | {points: [Point,Point] ,length: number ,angle: number} |
minorAxis | Ellipse's minor axis | {points: [Point,Point] ,length: number ,angle: number} |
surface | Ellipse's surface | {points: [Point,Point] ,length: number ,angle: number} |
const ellipse = roi.ellipse;